{% extends 'base.html' %} {% load static %} {% block title %}Admin Dashboard{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Quick Actions
{% if can_manage_roles %} {% endif %}
{% if can_manage_users %} Add User {% endif %} New Appointment
Total Users
{{ stats.total_users }}
{{ stats.active_user_count }} active
Departments
{{ stats.total_departments }}
View all
Pending Appointments
{{ stats.pending_appointments }}
Total Users
{{ stats.total_users }}
{% if can_manage_users %} Manage Users {% endif %}
{% if stats.total_departments %}
Departments
{{ stats.total_departments }}
{% if can_manage_roles %} Manage {% endif %}
{% endif %}
Total Tasks
{{ stats.total_tasks }}
Open Tasks
{{ stats.open_tasks }}
{% if stats.overdue_tasks > 0 %}
{{ stats.overdue_tasks }} overdue
{% endif %}
Tasks Completed (30d)
{{ stats.completed_tasks_30d }}
{% for activity in recent_activities %}
{{ activity.title }}
{{ activity.timestamp|timesince }} ago

{{ activity.description }}

{% empty %}

No recent activities found

{% endfor %}
Recent Activity
{% for activity in recent_activities %}
{% if activity.type == 'appointment' %} {% elif activity.type == 'task' %} {% elif activity.type == 'note' %} {% endif %} {{ activity.title }}
{{ activity.timestamp|timesince }} ago

{{ activity.description }}

{% if activity.link %} View {% endif %}
{% empty %}

No recent activity

{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}